home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
007
/
boostrs.arc
/
XWAIT.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1985-11-04
|
303b
|
19 lines
{$IBoDecl}
{$ITimer}
{$ICenter}
{$IPutStr}
{$IWait}
BEGIN
ClrScr;
PutStr ( h, 'Press a key for speed, home for hold',
1, 25, 7 );
for i := 1 to 24 do
begin
str (i, s);
PutStr ( h,Center (S, 10,'-'), 1+(i-1)*3, i, 14 );
wait(1);
end
END.